Forum Activity for @douglas

douglas
@douglas
06/01/15 09:25:05AM
2,807 posts

Search page


Installation and Configuration

Your welcome, glad I could help. :)
douglas
@douglas
06/01/15 02:20:53AM
2,807 posts

image editor wont save


Design and Skin Customization

If your referring to the image editor in the Image Gallery module, try unchecking the High Resolution Editing checkbox in your ACP > Image Galleries > Global Config.
douglas
@douglas
05/31/15 07:30:20AM
2,807 posts

Differrent strange homepage after new user registration


Genosis

You might try removing that profile and creating it again.

I'm not able to replicate this on my test Genosis site, but there is something not right with that profile.
douglas
@douglas
05/30/15 06:50:46AM
2,807 posts

Language issue [SOLVED]


Design and Skin Customization

If you've set your Admin > User Accounts > Global Config > Default Language to the language you want to use that should work for new signups. Everyone else, including the admin, will need to set their default language in their account settings.

If that doesn't work, then you'll have to clear the language cookie in your browser.
douglas
@douglas
05/30/15 06:38:02AM
2,807 posts

Profile Layouts


Design and Skin Customization

See if this works for you:

{jrCore_media_player module="jrAudio" field="audio_file" search1="_profile_id = `$_profile_id`" search2="audio_featured = on" limit="21" type="jrAudio_blue_monday" assign="show_featured"}

{if isset($show_featured) && strlen($show_featured) > 0}
{$show_featured}
{else}
<div class="block">
    {jrCore_include template="profile_index_image.tpl"}
</div>
{/if}
douglas
@douglas
05/29/15 10:58:11AM
2,807 posts

Cant Upload Images To Gallery


Using Jamroom

You may also want to reset your cache if you haven't already... ACP > System Tools > Reset Cache
douglas
@douglas
05/29/15 10:16:42AM
2,807 posts

Search page


Installation and Configuration

For a simple page, create a file named site-search.tpl and add this code:

{assign var="selected" value="search"}
{assign var="no_inner_div" value="true"}
{assign var="page_title" value="Site Search"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}

<div class="inner">
    {jrSearch_form class="form_text" value="Search Site" style="width:70%"}
</div>
{jrCore_include template="footer.tpl"}

Then change your search link in your header_menu_mobile.tpl file from this:

{if jrCore_module_is_active('jrSearch')}
    <li id="search_link"><a onclick="jrSearch_modal_form();" title="Site Search"><span class="capital">{jrCore_lang  skin=$_conf.jrCore_active_skin id="24" default="search"}</span></a></li>
{/if}

to this:

{if jrCore_module_is_active('jrSearch')}
    <li><a href="{$jamroom_url}/site-search" title="Site Search"{if isset($selected) && $selected == 'search'} style="{$menu_active_style}"{/if}><span class="capital">{jrCore_lang  skin=$_conf.jrCore_active_skin id="24" default="search"}</span></a></li>
{/if}
douglas
@douglas
05/29/15 09:49:51AM
2,807 posts

Cant Upload Images To Gallery


Using Jamroom

On the image editor, make sure you have the High Resolution Editing check box unchecked in your ACP > Image Galleries > Global Config section.
douglas
@douglas
05/29/15 09:46:35AM
2,807 posts

Cant Upload Images To Gallery


Using Jamroom

Make sure you are changing the setting for the right quota, or if you want all quotas to not have a gallery, check the apply to all quotas checkbox.
douglas
@douglas
05/29/15 09:42:40AM
2,807 posts

Profile Layouts


Design and Skin Customization

on or off.

{if $checkbox_variable == 'on'}
    show code
{/if}
  150